.offers-ticker-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.ticker-wrap {
    width: 100%;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: inline-flex;
    animation: ticker-scroll 30s linear infinite;
    gap: 40px;
}

.ticker-item {
    font-size: clamp(60px, 12vw, 150px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.712);
    color: transparent;
    transition: all 0.4s ease;
}

.ticker-item.solid {
    color: #fff;
    -webkit-text-stroke: 0;
}

.ticker-item.highlight {
    color: black;
    -webkit-text-stroke: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.offer-featured-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('../images/bg/Your paragraph text.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    text-align: center;
    z-index: 10;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.offer-photo-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: background 0.4s ease;
}

.offer-photo-link:hover {
    background: rgba(0, 0, 0, 0.2);
}

.offer-featured-card h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.offer-featured-card p {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 300px;
}

.btn-ticker-action {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-ticker-action:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.other-offers-container {
    margin-top: 10px;
    padding: 0 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.other-offers-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.other-offers-title span {
    color: white;
    font-family: serif;
    font-weight: 300;
    margin-left: 10px;
}

.other-offers-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.other-offers-row::-webkit-scrollbar {
    display: none;
}

.offer-mini-tile {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    transition: transform 0.4s ease;
}

.offer-mini-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.offer-mini-tile:hover img {
    opacity: 1;
}

.offer-mini-label {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 4px;
}

.gallery-artisanal-section {
    background-color: #ffffff;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.masonry-tile {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background-color: #f5f5f5;
    display: block;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.tile-big {
    grid-column: span 2;
    grid-row: span 2;
}

.tile-tall {
    grid-row: span 2;
}

.tile-wide {
    grid-column: span 2;
}

.masonry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.masonry-tile:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: #fff;
}

.masonry-tile:hover .masonry-overlay {
    opacity: 1;
    transform: translateY(0);
}

.masonry-overlay h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.masonry-overlay span {
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-ticker-section {
        display: flex;
        flex-direction: column;
        padding: 60px 0;
    }

    .ticker-wrap {
        margin-bottom: 20px;
    }

    .other-offers-container {
        padding: 5px;
        margin-top: 0px;
    }

    .other-offers-row {
        justify-content: center;
        gap: 15px;
        padding: 0px;
        overflow-x: scroll;
    }

    .offer-mini-tile {
        width: 90px;
        height: 10vh;
        border-radius: 8px;
    }

    .other-offers-title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .offer-mini-tile .offer-mini-label {
        font-size: 10px;
        bottom: 10px;
        left: 10px;
    }

    .masonry-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 300px;
    }

    .tile-big,
    .tile-tall,
    .tile-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .ticker-item {
        font-size: 50px;
    }

    .offer-featured-card {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 60px 20px;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .offer-featured-card h2 {
        font-size: 40px;
    }
}